fe7d1445b081e1b80f7b085068a5483ba4f0a554,source/org/jfree/chart/plot/CombinedDomainXYPlot.java,CombinedDomainXYPlot,zoomRangeAxes,#number#number#PlotRenderingInfo#Point2D#,593
Before Change
Iterator iterator = getSubplots().iterator();
while (iterator.hasNext()) {
subplot = (XYPlot) iterator.next();
subplot.zoomRangeAxes(lowerPercent, upperPercent, info, source);
}
}
}
After Change
// if the source point doesn't fall within a subplot, we do the
// zoom on all subplots...
for (XYPlot p : this.subplots) {
p.zoomRangeAxes(lowerPercent, upperPercent, info, source);
}
}
}